C 언어 코드 조각 - 08.미국식날짜표현(asctime).c

/*
	asctime() : 미국식 날짜 표현
*/
#include <stdio.h>
#include <time.h>

void main(void)
{
	//초 단위
	time_t now;
	//시간 구조체
	struct tm t;

	//초 계산
	now = time(NULL);
	
	//현재 시간 계산
	t = *localtime(&now);

	//문자열(미국식)로 출력
	printf("현재 날짜 및 시간 : %s \n", asctime(&t));
}

 

Comments


Comments are closed